REST DeleteClient Node
The REST DeleteClient Node
gets a trigger to the Input Port
, requests REST API Server
, sends request to delete data, receives and transmits respond to the Output Ports
.
The REST DeleteClient Node
gets an event of any data type to the trigger
Input Port
to send a request.
The Node has the following General
and Input
Configuration Parameters
:
uri
(obligatory). Insert thedefault uri
of theREST API Server
in theGeneral
configuration parameters. If theREST DeleteClient Node
getsoptional uri
to theInput Ports
thedefault uri
is ignored.header
(optional). Empty by default. Gets configurations as aJSON object
. Is used to configure authorization, cookie, session etc. If theREST DeleteClient Node
getsoptional header
to theInput Ports
the configuration parameters from thedefault header
andoptional header
are joined.code
(optional). Missing by default. The additional parameters can be transmitted to theInput Ports
by clicking+
button and adding data of any type.
The Node has the following Output Ports
:
body
. The Port gets and transmits the respond of theREST API Server
. The data type of theOutput Port
can bestring
orobject
depending on theheaders["Content-Type"]
in the respond of theREST API Server
.header
(optional). The Port gets and transmits theheader
as aJSON object
. The Port gets and transmits the header of the respond of theREST API Server
.status
(optional). The Port gets and transmits thestatus
code of theREST API Server
respond as aninteger
number, ex.200, 201, 400, 500
has_error
. The Port gets and transmits theboolean
valueTrue
if there is an error while requesting theREST API Server
, orFalse
if theREST API Server
gets request without an error.